home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Source / GNU / libg++ / libio / stdio / Makefile.in < prev    next >
Makefile  |  1994-02-15  |  685b  |  24 lines

  1. srcdir = .
  2.  
  3. #### package, host, target, and site dependent Makefile fragments come in here.
  4. ##
  5.  
  6. # These are compiled from the corresponding ../ioFOO.c files.
  7. STDIO_RENAMED_OBJECTS = ... filled in by configure ...
  8. # These are the files that a libc would want.
  9. STDIO_OBJECTS = $(STDIO_RENAMED_OBJECTS) \
  10.   clearerr.o fdopen.o feof.o ferror.o fgetc.o fileno.o \
  11.   fputc.o freopen.o fseek.o getc.o getchar.o getw.o \
  12.   popen.o putc.o putchar.o putw.o rewind.o \
  13.   setbuf.c setfileno.o setlinebuf.o \
  14.   vfprintf.o vfscanf.o vprintf.o vscanf.o
  15.  
  16. CC_FOR_STDIO=$(CC)
  17. CINCLUDES = -I. -I$(srcdir) -I.. -I$(srcdir)/..
  18.  
  19. nothing:
  20.  
  21. stdio.list: $(STDIO_OBJECTS)
  22.     @echo "$(STDIO_OBJECTS)" >stdio.list
  23.  
  24.